fmt.ss.scanUint (method)
8 uses
fmt (current package)
scan.go#L671: func (s *ss) scanUint(verb rune, bitSize int) uint64 {
scan.go#L986: *v = uint(s.scanUint(verb, intBits))
scan.go#L988: *v = uint8(s.scanUint(verb, 8))
scan.go#L990: *v = uint16(s.scanUint(verb, 16))
scan.go#L992: *v = uint32(s.scanUint(verb, 32))
scan.go#L994: *v = s.scanUint(verb, 64)
scan.go#L996: *v = uintptr(s.scanUint(verb, uintptrBits))
scan.go#L1030: v.SetUint(s.scanUint(verb, v.Type().Bits()))
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |